home *** CD-ROM | disk | FTP | other *** search
/ Champak 33 / Volume 33 - JOGO DISK .iso / Games / space_runner_2.swf / scripts / frame_86 / PlaceObject2_80_211 / CLIPACTIONRECORD onClipEvent(enterFrame).as
Text File  |  2007-01-12  |  249b  |  11 lines

  1. onClipEvent(enterFrame){
  2.    if(this.hitTest(_root.hero) and this._x < _root.hero._x)
  3.    {
  4.       _root.hero._x = this._x + 17;
  5.    }
  6.    if(this.hitTest(_root.hero) and _root.hero._x < this._x)
  7.    {
  8.       _root.hero._x = this._x - 17;
  9.    }
  10. }
  11.